home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / demo / tt.app < prev   
Encoding:
Text File  |  1994-11-24  |  487 b   |  26 lines

  1. \
  2. \ tt.app --- shows how to build a turnkey application.
  3. \
  4.  
  5. INCLUDE TETRIS            \ load all source
  6.  
  7. EXTENSIONS ALSO            \ access variable APPLICATION
  8. ' TT APPLICATION !        \ store main word of application
  9.                 \ in APPLICATION
  10.  
  11. \
  12. \ Load this file from the command line like this:
  13. \
  14. \    pfe -D tt.dic tt.app
  15. \         ^           ^
  16. \         |           |
  17. \         |           +-- source file to load, this file
  18. \         |
  19. \         +-- file to store the image
  20. \
  21. \
  22. \ Then execute the image like this:
  23. \
  24. \    pfe -d tt.dic
  25. \
  26.